         /* Main CSS for Generic.html */
         :root {
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --accent: #8338ec;
            --text: #f8f9fa;
            --text-secondary: #adb5bd;
            --bg: #121212;
            --bg-light: #1e1e1e;
            --glass-bg: rgba(30, 30, 30, 0.5);
            --glass-border: rgba(255, 255, 255, 0.1);
            --glass-highlight: rgba(255, 255, 255, 0.05);
            --success: #28a745;
            --warning: #ffc107;
            --danger: #dc3545;
          }
          
          
          body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
          }
          
          
          .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px) saturate(180%);
            -webkit-backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
          }
          
          .glass-light {
            background: rgba(255, 255, 255, 0.05);
          }
          
          
          .header {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
          }
          
          .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
          }
          
          .logo img {
            height: 2rem;
          }
          
          .cus-navbar {
            display: flex;
            gap: 1.5rem;
            align-items: center;
          }
          
          .dropdown {
            position: relative;
            display: inline-block;
          }
          
          .dropdown button {
            background: transparent;
            border: none;
            color: var(--text-secondary);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            padding: 0.5rem 1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
          }
          
          .dropdown button:hover {
            color: var(--text);
          }
          
          .dropdown-content {
            display: none;
            position: absolute;
            min-width: 250px;
            z-index: 1;
            border-radius: 0.5rem;
            padding: 1rem 0;
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
          }
          
          .dropdown:hover .dropdown-content {
            display: block;
            animation: fadeIn 0.3s ease;
          }
          
          .dropdown-content a {
            color: var(--text-secondary);
            padding: 0.75rem 1.5rem;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-size: 0.9rem;
          }
          
          .dropdown-content a:hover {
            color: var(--text);
            background: var(--glass-highlight);
          }
          
          .dropdown-item {
            display: flex;
            gap: 1rem;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
          }
          
          .dropdown-item:hover {
            background: var(--glass-highlight);
          }
          
          .dropdown-item .icon {
            font-size: 1.2rem;
            color: var(--accent);
          }
          
          .dropdown-item .content h3 {
            margin: 0;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text);
          }
          
          .dropdown-item .content p {
            margin: 0.25rem 0 0;
            font-size: 0.8rem;
            color: var(--text-secondary);
          }
          
          .nav-link {
            color: var(--text-secondary);
            font-size: 1.25rem;
            transition: color 0.3s ease;
          }
          
          .nav-link:hover {
            color: var(--text);
          }
          
          /* Welcome Container (HUD Effect) */
          .welcome-container {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            overflow: hidden;
            margin-top: -80px;
          }
          
          .hud-image-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
          }
          
          .hud-image {
            width: 50%;
            height: auto;
            object-fit: cover;
            opacity: 0.7;
            margin-left: 45%;
            margin-top: 10%;
          }
          
          .hud-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(58, 134, 255, 0.1), rgba(131, 56, 236, 0.1));
          }
          
          .data-line {
            position: absolute;
            background: rgba(58, 134, 255, 0.5);
            height: 1px;
            width: 100%;
            animation: scan 8s linear infinite;
          }
          
          .line-1 {
            top: 20%;
            animation-delay: 0s;
          }
          
          .line-2 {
            top: 50%;
            animation-delay: 2s;
          }
          
          .line-3 {
            top: 80%;
            animation-delay: 4s;
          }
          
          .hud-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border-radius: 50%;
            border: 2px solid rgba(58, 134, 255, 0.3);
            box-shadow: 0 0 50px rgba(58, 134, 255, 0.2);
            animation: pulse 4s ease-in-out infinite;
          }
          
          .hud-message {
            max-width: 800px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            padding: 3rem;
            margin-right: 50%;
            border-radius: 1rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          }
          
          .hud-message h1 {
            font-family: 'Courier New', monospace;
            font-size: 2rem;
            line-height: 1.5;
            margin-bottom: 2rem;
            color: var(--text);
          }
          
          .hud-text-line {
            display: block;
            margin-bottom: 0.5rem;
          }
          
          .blink {
            animation: blink 1s step-end infinite;
            color: var(--accent);
          }
          
          .hud-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
          }
          
          .stat {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: var(--text-secondary);
          }
          
          .stat-value {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--accent);
            margin-right: 0.3rem;
          }
          
          
          /* Main Container */
          .cus-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 5%;
          }
          
          /* Hero Section */
          .hero-section {
            padding: 6rem 0 4rem;
            text-align: center;
          }
          
          .hero-content {
            max-width: 800px;
            margin: 0 auto;
          }
          
          .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            background: linear-gradient(90deg, var(--text), var(--text-secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
          }
          
          .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
          }
          
          .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
          }
          
          .hero-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
          }
          
          .primary-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
          }
          
          .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          }
          
          .secondary-btn {
            background: transparent;
            color: var(--text);
            border: 2px solid var(--text);
          }
          
          .secondary-btn:hover {
            background: rgba(255, 255, 255, 0.1);
          }
          
          /* Features Section */
          .features-section {
            padding: 4rem 0;
          }
          
          .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-align: center;
            color: var(--text);
          }
          
          .section-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 3rem;
            text-align: center;
          }
          
          .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
          }
          
          .feature-card {
            padding: 2rem;
            border-radius: 1rem;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
          }
          
          .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            z-index: -1;
          }
          
          .feature-card:hover {
            transform: translateY(-5px);
          }
          
          .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
          }
          
          .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
          }
          
          .feature-desc {
            color: var(--text-secondary);
          }
          
          /* Steps Section */
          .steps-section {
            padding: 4rem 0;
          }
          
          .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
          }
          
          .step-card {
            padding: 2rem;
            border-radius: 1rem;
            position: relative;
            overflow: hidden;
          }
          
          .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            z-index: -1;
          }
          
          .step-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
            opacity: 0.3;
          }
          
          .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
          }
          
          .step-desc {
            color: var(--text-secondary);
          }
          
          /* Testimonials Section */
          .testimonials-section {
            padding: 4rem 0;
          }
          
          .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
          }
          
          .testimonial-card {
            padding: 2rem;
            border-radius: 1rem;
            position: relative;
          }
          
          .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 1rem;
            z-index: -1;
          }
          
          .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            position: relative;
          }
          
          .testimonial-text::before,
          .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--accent);
            opacity: 0.5;
            position: absolute;
          }
          
          .testimonial-text::before {
            top: -1rem;
            left: -1rem;
          }
          
          .testimonial-text::after {
            bottom: -2rem;
            right: -1rem;
          }
          
          .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
          }
          
          .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
          }
          
          .author-info h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--text);
          }
          
          .author-info p {
            margin: 0.25rem 0 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
          }
          
          /* CTA Section */
          .cta-section {
            padding: 4rem 0;
            text-align: center;
          }
          
          .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text);
          }
          
          .cta-desc {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 2rem;
          }
          
          /* Footer */
          .cus-footer {
            background: var(--bg-light);
            padding: 5rem 5% 2rem;
            margin-top: 4rem;
          }
          
          .cus-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
          }
          
          .footer-col {
            display: flex;
            flex-direction: column;
          }
          
          .footer-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text);
          }
          
          .footer-desc {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
          }
          
          .footer-link {
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
            text-decoration: none;
            transition: color 0.3s ease;
          }
          
          .footer-link:hover {
            color: var(--text);
          }
          
          .footer-social {
            display: flex;
            gap: 1rem;
          }
          
          .footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 50%;
            background: var(--glass-bg);
            color: var(--text);
            transition: all 0.3s ease;
          }
          
          .footer-social a:hover {
            background: var(--accent);
            transform: translateY(-3px);
          }
          
          .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--glass-border);
            color: var(--text-secondary);
          }
          
          /* Modal Styles */
          .modal-content {
            background: var(--bg-light);
            color: var(--text);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
          }
          
          .modal-header {
            border-bottom: 1px solid var(--glass-border);
          }
          
          .modal-footer {
            border-top: 1px solid var(--glass-border);
          }
          
          .btn-close {
            filter: invert(1);
          }
          
          .form-control {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--text);
          }
          
          .form-control:focus {
            background: var(--glass-bg);
            border-color: var(--accent);
            color: var(--text);
            box-shadow: 0 0 0 0.25rem rgba(131, 56, 236, 0.25);
          }
          
          /* Animations */
          @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
          }
          
          @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
          }
          
          @keyframes pulse {
            0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
            50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
            100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
          }
          
          @keyframes blink {
            from, to { opacity: 1; }
            50% { opacity: 0; }
          }
          
          .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
          }
          
          .fade-in.delay-1 {
            transition-delay: 0.2s;
          }
          
          .fade-in.delay-2 {
            transition-delay: 0.4s;
          }
          
          .fade-in.delay-3 {
            transition-delay: 0.6s;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 768px) {
            .hero-title {
              font-size: 2.5rem;
            }
            
            .header {
              padding: 1rem 5%;
            }
            
            .cus-navbar {
              gap: 0.5rem;
            }
            
            .dropdown button {
              padding: 0.5rem;
            }
            
            .hud-message {
              padding: 2rem;
            }
            
            .hud-message h1 {
              font-size: 1.5rem;
            }
            
            .hero-buttons {
              flex-direction: column;
              gap: 1rem;
            }
            
            .hero-btn {
              width: 100%;
              justify-content: center;
            }
          }
          
          @media (max-width: 480px) {
            .hero-title {
              font-size: 2rem;
            }
            
            .section-title {
              font-size: 2rem;
            }
            
            .logo {
              font-size: 1.5rem;
            }
            
            .dropdown-content {
              min-width: 200px;
            }
          }
          
          /*____________________*/
          /* Mobile Menu Button */
          .mobile-menu-btn {
            background: transparent;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            padding: 0.5rem;
            display: none;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 992px) {
            .header {
              padding: 1rem 5%;
            }
            
            .mobile-menu-btn {
              display: block;
              order: 1;
            }
            
            .logo {
              order: 0;
            }
            
            .cus-navbar {
              position: fixed;
              top: 70px;
              left: 0;
              width: 100%;
              background: var(--bg-light);
              backdrop-filter: blur(16px);
              -webkit-backdrop-filter: blur(16px);
              border-bottom: 1px solid var(--glass-border);
              padding: 1rem 5%;
              flex-direction: column;
              gap: 0.5rem;
              align-items: flex-start;
              box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
              max-height: calc(100vh - 70px);
              overflow-y: auto;
            }
            
            .dropdown {
              width: 100%;
            }
            
            .dropdown button {
              width: 100%;
              justify-content: space-between;
              padding: 0.75rem 0;
            }
            
            .dropdown-content {
              position: static;
              width: 100%;
              box-shadow: none;
              border: none;
              display: none;
              animation: none;
            }
            
            .dropdown:hover .dropdown-content {
              display: none;
            }
            
            .dropdown.active .dropdown-content {
              display: block;
            }
            
            .nav-link {
              padding: 0.75rem 0;
              display: block;
              width: 100%;
            }
          }
          
          @media (min-width: 992px) {
            .cus-navbar {
              display: flex !important;
            }
          }
          
          /* Small devices (landscape phones, 576px and up) */
          @media (max-width: 768px) {
            .logo {
              font-size: 1.5rem;
            }
            
            .logo img {
              height: 1.5rem;
            }
            
            .dropdown-content a {
              padding: 0.5rem 0;
            }
            
            .dropdown-item {
              padding: 0.5rem 0;
            }
          }
          
          
          
          /* Account Sidebar Glassmorphic Styling */
          #accountSidebar {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(16px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
            border-left: 1px solid var(--glass-border) !important;
          }
          
          #accountSidebar .offcanvas-header {
            border-bottom: 1px solid var(--glass-border) !important;
          }
          
          #accountSidebar .btn-close {
            filter: invert(1) !important;
            opacity: 0.8 !important;
          }
          
          #accountSidebar .btn-outline-danger {
            transition: all 0.3s ease !important;
          }
          
          #accountSidebar .btn-outline-danger:hover {
            background-color: var(--danger) !important;
            color: white !important;
          }
          
          #accountSidebar .form-check-input:checked {
            background-color: var(--accent) !important;
            border-color: var(--accent) !important;
          }
          
          /* Responsive Adjustments */
          @media (max-width: 576px) {
            #accountSidebar {
              width: 85% !important;
            }
          }
          
          